Add a real "Add many" button.
authorMatthias Clasen <mclasen@redhat.com>
Tue, 9 Nov 2004 19:25:55 +0000 (19:25 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 9 Nov 2004 19:25:55 +0000 (19:25 +0000)
2004-11-09  Matthias Clasen  <mclasen@redhat.com>

* tests/testiconview.c: Add a real "Add many" button.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/testiconview.c

index bca495a51ab5e7ab92aeadcf0c413d3bd1344310..e18d898f0369eba8cf2a64c0a019308b22d90b87 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2004-11-09  Matthias Clasen  <mclasen@redhat.com>
 
+       * tests/testiconview.c: Add a real "Add many" button.
+
        * gtk/gtkaction.[hc]: 
        * gtk/gtkactiongroup.[hc]: Make return types G_CONST_RETURN
        instead of const.
index bca495a51ab5e7ab92aeadcf0c413d3bd1344310..e18d898f0369eba8cf2a64c0a019308b22d90b87 100644 (file)
@@ -1,5 +1,7 @@
 2004-11-09  Matthias Clasen  <mclasen@redhat.com>
 
+       * tests/testiconview.c: Add a real "Add many" button.
+
        * gtk/gtkaction.[hc]: 
        * gtk/gtkactiongroup.[hc]: Make return types G_CONST_RETURN
        instead of const.
index bca495a51ab5e7ab92aeadcf0c413d3bd1344310..e18d898f0369eba8cf2a64c0a019308b22d90b87 100644 (file)
@@ -1,5 +1,7 @@
 2004-11-09  Matthias Clasen  <mclasen@redhat.com>
 
+       * tests/testiconview.c: Add a real "Add many" button.
+
        * gtk/gtkaction.[hc]: 
        * gtk/gtkactiongroup.[hc]: Make return types G_CONST_RETURN
        instead of const.
index bca495a51ab5e7ab92aeadcf0c413d3bd1344310..e18d898f0369eba8cf2a64c0a019308b22d90b87 100644 (file)
@@ -1,5 +1,7 @@
 2004-11-09  Matthias Clasen  <mclasen@redhat.com>
 
+       * tests/testiconview.c: Add a real "Add many" button.
+
        * gtk/gtkaction.[hc]: 
        * gtk/gtkactiongroup.[hc]: Make return types G_CONST_RETURN
        instead of const.
index dac725aa280d506a040b919218dcde29e913c533..69fd6a873c3e6d692c8c36fe1807098d4c76e72a 100644 (file)
@@ -22,8 +22,9 @@
 #include <string.h>
 #include "prop-editor.h"
 
-#define NUMBER_OF_ITEMS 10
-#define MANY_ITEMS 10000
+#define NUMBER_OF_ITEMS   10
+#define SOME_ITEMS       100
+#define MANY_ITEMS     10000
 
 static void
 fill_model (GtkTreeModel *model)
@@ -103,7 +104,7 @@ foreach_selected_remove (GtkWidget *button, GtkIconView *icon_list)
 
 
 static void
-add_many (GtkWidget *button, GtkIconView *icon_list)
+add_n_items (GtkIconView *icon_list, gint n)
 {
   static gint count = NUMBER_OF_ITEMS;
 
@@ -117,7 +118,7 @@ add_many (GtkWidget *button, GtkIconView *icon_list)
   pixbuf = gdk_pixbuf_new_from_file ("gnome-textfile.png", NULL);
 
 
-  for (i = 0; i < MANY_ITEMS; i++)
+  for (i = 0; i < n; i++)
     {
       str = g_strdup_printf ("Icon %d", count);
       str2 = g_strdup_printf ("Icon <b>%d</b>", count);        
@@ -134,6 +135,18 @@ add_many (GtkWidget *button, GtkIconView *icon_list)
     }
 }
 
+static void
+add_some (GtkWidget *button, GtkIconView *icon_list)
+{
+  add_n_items (icon_list, SOME_ITEMS);
+}
+
+static void
+add_many (GtkWidget *button, GtkIconView *icon_list)
+{
+  add_n_items (icon_list, MANY_ITEMS);
+}
+
 static void
 select_all (GtkWidget *button, GtkIconView *icon_list)
 {
@@ -308,6 +321,10 @@ main (gint argc, gchar **argv)
   gtk_button_box_set_layout (GTK_BUTTON_BOX (bbox), GTK_BUTTONBOX_START);
   gtk_box_pack_start (GTK_BOX (vbox), bbox, FALSE, FALSE, 0);
 
+  button = gtk_button_new_with_label ("Add some");
+  g_signal_connect (button, "clicked", G_CALLBACK (add_some), icon_list);
+  gtk_box_pack_start_defaults (GTK_BOX (bbox), button);
+
   button = gtk_button_new_with_label ("Add many");
   g_signal_connect (button, "clicked", G_CALLBACK (add_many), icon_list);
   gtk_box_pack_start_defaults (GTK_BOX (bbox), button);